home *** CD-ROM | disk | FTP | other *** search
- #include <exec/types.h>
- #include <intuition/intuition.h>
- #include <graphics/text.h>
-
- #include "/defs.h"
-
- struct cPrefObject {
- UBYTE fName[64], Speed, Cycle, Secs, Military;
- struct TextAttr Font;
- };
-
- VOID defaults( struct bMessage *Msg )
- {
- static struct cPrefObject cPO = { "topaz.font", 11, 0, 0, 0 };
-
- cPO.Font.ta_YSize = 11;
- cPO.Font.ta_Style = FS_NORMAL;
- cPO.Font.ta_Flags = FPB_ROMFONT;
-
- Msg->bm_Info = "Floating Clock Module";
- Msg->bm_Data = ( UBYTE * )( &cPO );
-
- Msg->bm_Dep = 1;
- Msg->bm_Mod = INVALID_ID;
- }
-